home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / gempp19.zoo / gem++19 / include / bool.h next >
Encoding:
C/C++ Source or Header  |  1993-11-01  |  97 b   |  10 lines

  1. #ifndef bool_h
  2. #define bool_h
  3.  
  4. typedef int bool;
  5.  
  6. const bool TRUE=1;
  7. const bool FALSE=0;
  8.  
  9. #endif
  10.